home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / ISSUE11 / CONSOLE / CONSOLE.ZIP / UNIT1.DFM / UNIT1.txt
Encoding:
Text File  |  1996-05-27  |  1.7 KB  |  91 lines

  1. object Form1: TForm1
  2.   Left = 278
  3.   Top = 111
  4.   Width = 435
  5.   Height = 308
  6.   ActiveControl = Colors
  7.   Caption = 'Form1'
  8.   Font.Color = clWindowText
  9.   Font.Height = -13
  10.   Font.Name = 'Arial'
  11.   Font.Style = []
  12.   PixelsPerInch = 120
  13.   Scaled = False
  14.   OnCreate = FormCreate
  15.   TextHeight = 16
  16.   object Terminal1: TColorConsole
  17.     Left = 0
  18.     Top = 30
  19.     Width = 427
  20.     Height = 247
  21.     Align = alClient
  22.     ParentColor = False
  23.     Font.Color = clWindowText
  24.     Font.Height = -13
  25.     Font.Name = 'Courier'
  26.     Font.Style = []
  27.     Options = [coAutoTracking, coCheckBreak, coLazyWrite, coStdOutput]
  28.     LineBreak = CRLF
  29.   end
  30.   object P1: TPanel
  31.     Left = 0
  32.     Top = 0
  33.     Width = 427
  34.     Height = 30
  35.     Align = alTop
  36.     TabOrder = 0
  37.     object L1: TLabel
  38.       Left = 352
  39.       Top = 6
  40.       Width = 28
  41.       Height = 16
  42.       Caption = 'point'
  43.     end
  44.     object Colors: TButton
  45.       Left = 8
  46.       Top = 4
  47.       Width = 57
  48.       Height = 21
  49.       Caption = 'Colors'
  50.       TabOrder = 0
  51.       OnClick = ColorsClick
  52.     end
  53.     object Fonts: TButton
  54.       Left = 72
  55.       Top = 4
  56.       Width = 57
  57.       Height = 21
  58.       Caption = 'Fonts'
  59.       TabOrder = 1
  60.       OnClick = ShowTestPattern
  61.     end
  62.     object Size: TEdit
  63.       Left = 312
  64.       Top = 4
  65.       Width = 33
  66.       Height = 24
  67.       TabOrder = 4
  68.       Text = '10'
  69.       OnExit = SizeLostFocus
  70.     end
  71.     object LazyWrite: TCheckBox
  72.       Left = 216
  73.       Top = 6
  74.       Width = 89
  75.       Height = 17
  76.       Caption = 'LazyWrite'
  77.       TabOrder = 3
  78.       OnClick = LazyWriteClick
  79.     end
  80.     object Clear: TButton
  81.       Left = 136
  82.       Top = 4
  83.       Width = 65
  84.       Height = 21
  85.       Caption = 'Clear'
  86.       TabOrder = 2
  87.       OnClick = ClearClick
  88.     end
  89.   end
  90. end
  91.